實現一個請求顯示Hello World
再java底下的Package(我的是com.example.springbootex,對應當時創建時所設定的名稱)裡面創建一個Java Class
名字可以自己取然後選Class
package com.example.springbootex;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;
@RestController
public class HelloWorld {
@GetMapping("/")
public String hello(){
return "Hello World !!!";
}
}
Spring boot 啟動!!!
看見Started就表示你成功了
同時也可以看到妳的port為8080
在網站中打上localhost:8080
這樣就成功出現Hello World字樣了